/**
 * THIS IS WHY I CAN NEVER GET ANYTHING DONE
 */
class FML {
  constructor(
    grandTotal: QuoteGrandTotal,
    depositPercent: QuoteDepositPercent,
  ) {
    super();
    this.depositPercent = depositPercent;
    this.grandTotal = grandTotal;
  }
}